home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: DataFileThreeDPane.h,v 1.3 1993/05/30 09:10:08 davis Exp $ */
-
- #import "FunctionPane.h"
-
- #define THREED_XCOL 0
- #define THREED_YCOL 1
- #define THREED_ZCOL 2
- #define THREED_ZCOLONLY 3
-
- #define Z_ONLY 0
-
- @interface DataFileThreeDPane:FunctionPane
- {
- id detailedButton;
- id infoField;
- id infoLine2;
- id zOnlyRadioMatrix;
-
- id xColField;
- id yColField;
- id zColField;
- id zOnlyColField;
- }
-
- - init;
-
- - setDetailed:sender;
- - setColumnsData:sender;
- - setZOnly:sender;
-
- - (BOOL)updateStatus:aStatus doc:aDoc;
-
- @end
-